home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / enabledisplay / RCS / enabledisplay.c,v < prev    next >
Encoding:
Text File  |  1990-02-23  |  807 b   |  44 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     90.02.23.12.13.23;  author shirriff;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/*
  26.  * Copyright (c) 1987 Regents of the University of California.
  27.  * All rights reserved.
  28.  *
  29.  * Redistribution and use in source and binary forms are permitted
  30.  * provided that this notice is preserved and that due credit is given
  31.  * to the University of California at Berkeley. The name of the University
  32.  * may not be used to endorse or promote products derived from this
  33.  * software without specific written prior permission. This software
  34.  * is provided ``as is'' without express or implied warranty.
  35.  */
  36.  
  37. main(argc,argv)
  38. int argc;
  39. char **argv;
  40. {
  41.     Sys_EnableDisplay((argc<2)?1:0);
  42. }
  43. @
  44.